home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / HyperCuber Source / HyperCuber 2.0 Source.sit / HyperCuber 2.0 Source / CKeyControlsArrayPane.h < prev    next >
Text File  |  1994-04-01  |  717b  |  26 lines

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| CKeyControlsArrayPane.cp
  3. //|
  4. //| This file contains the interface to the CKeyControlsArray class.  The
  5. //| CKeyControlsArrayPane class implements the the scrolling list in the key
  6. //| controls window.
  7. //|________________________________________________________________________________
  8.  
  9.  
  10. #include <CArrayPane.h>
  11.  
  12.  
  13. class CKeyControlsArrayPane : public CArrayPane
  14.     {
  15.  
  16.   public:
  17.  
  18.     void IKeyControlsArrayPane( CView *anEnclosure, CBureaucrat *aSupervisor,
  19.                             short aWidth, short aHeight,
  20.                             short aHEncl, short aVEncl,
  21.                             SizingOption aHSizing, SizingOption aVSizing);
  22.  
  23.     void DrawCell(Cell theCell, Rect *cellRect);
  24.     
  25.     };
  26.